imagebutton yerleri degişiyor cihazda
arkadaşlar ekteki xml dosyasında imagebutonların yerini ayarlıyorum..cihaza gönderince butonun yerleşimi degişiyo nasıl yapabilirim yardımcı olabilirmisiniz acaba.
[code]
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@drawable/background5"
android:clickable="false"
android:baselineAligned="false">
<TextView
android:id="@+id/text"
android:textColor="?android:textColorPrimary"
android:textSize="17dp"
android:text="@string/search_instructions"
android:background="@android:drawable/title_bar"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />
<ListView
android:id="@+id/list"
android:layout_width="match_parent"
android:layout_height="420dp"
android:layout_marginTop="15dp"/>
<ImageButton
android:id="@+id/imageButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/imagebutton"
android:background="@null"
android:layout_gravity="center|left|top"
android:layout_marginLeft="50dp"
android:layout_marginTop="-3dp" />
<ImageButton
android:id="@+id/imageButton1"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:src="@drawable/imagebutton2"
android:background="@null"
android:layout_gravity="center_horizontal|right"
android:layout_marginRight="80dp"
android:layout_marginTop="-45dp" />
</LinearLayout>
[/code]